home *** CD-ROM | disk | FTP | other *** search
- Why not make a plot entirely of your own? I don't know assembly so
- I'll use BASIC.AMOS-Like statements to describe this:
- (ScreenAddress=Phybase(0))
- Addr=ScreenAddress+X/8,Y*(Screen Width / 8)
- Poke Addr,Peek(Addr) Or 2^(X mod 8)
-
- This isn't all of course, but maybe the most important part. There's
- still important parts to figure out for color (you have to do this for every
- plane of which the color is a member and use "And Not" instead of "Or" for
- every plany of which the color is not a member). I'm not sure whether that
- 2^(X mod 8) is right or if it should be 2^(7-X mod 8). Also, I'm sure in
- assember that many efficiencies can be added... you don't want to use 2^,
- rather some other method of setting bit number [X mod 8].
- Why are you re-writing plot. There are free versions of the Turbo
- Plus extension that have a fast F Plot command. (Oops, the first period should
- of coursse be a "?".)
-
-